3.6.99 \(\int \frac {1}{\sqrt {x} (a-b x)^{3/2}} \, dx\)

Optimal. Leaf size=20 \[ \frac {2 \sqrt {x}}{a \sqrt {a-b x}} \]

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 20, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 1, integrand size = 16, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.062, Rules used = {37} \begin {gather*} \frac {2 \sqrt {x}}{a \sqrt {a-b x}} \end {gather*}

Antiderivative was successfully verified.

[In]

Int[1/(Sqrt[x]*(a - b*x)^(3/2)),x]

[Out]

(2*Sqrt[x])/(a*Sqrt[a - b*x])

Rule 37

Int[((a_.) + (b_.)*(x_))^(m_.)*((c_.) + (d_.)*(x_))^(n_), x_Symbol] :> Simp[((a + b*x)^(m + 1)*(c + d*x)^(n +
1))/((b*c - a*d)*(m + 1)), x] /; FreeQ[{a, b, c, d, m, n}, x] && NeQ[b*c - a*d, 0] && EqQ[m + n + 2, 0] && NeQ
[m, -1]

Rubi steps

\begin {align*} \int \frac {1}{\sqrt {x} (a-b x)^{3/2}} \, dx &=\frac {2 \sqrt {x}}{a \sqrt {a-b x}}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 20, normalized size = 1.00 \begin {gather*} \frac {2 \sqrt {x}}{a \sqrt {a-b x}} \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[1/(Sqrt[x]*(a - b*x)^(3/2)),x]

[Out]

(2*Sqrt[x])/(a*Sqrt[a - b*x])

________________________________________________________________________________________

IntegrateAlgebraic [A]  time = 0.02, size = 20, normalized size = 1.00 \begin {gather*} \frac {2 \sqrt {x}}{a \sqrt {a-b x}} \end {gather*}

Antiderivative was successfully verified.

[In]

IntegrateAlgebraic[1/(Sqrt[x]*(a - b*x)^(3/2)),x]

[Out]

(2*Sqrt[x])/(a*Sqrt[a - b*x])

________________________________________________________________________________________

fricas [A]  time = 1.03, size = 25, normalized size = 1.25 \begin {gather*} -\frac {2 \, \sqrt {-b x + a} \sqrt {x}}{a b x - a^{2}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(-b*x+a)^(3/2)/x^(1/2),x, algorithm="fricas")

[Out]

-2*sqrt(-b*x + a)*sqrt(x)/(a*b*x - a^2)

________________________________________________________________________________________

giac [B]  time = 1.37, size = 53, normalized size = 2.65 \begin {gather*} -\frac {4 \, \sqrt {-b} b}{{\left ({\left (\sqrt {-b x + a} \sqrt {-b} - \sqrt {{\left (b x - a\right )} b + a b}\right )}^{2} - a b\right )} {\left | b \right |}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(-b*x+a)^(3/2)/x^(1/2),x, algorithm="giac")

[Out]

-4*sqrt(-b)*b/(((sqrt(-b*x + a)*sqrt(-b) - sqrt((b*x - a)*b + a*b))^2 - a*b)*abs(b))

________________________________________________________________________________________

maple [A]  time = 0.00, size = 17, normalized size = 0.85 \begin {gather*} \frac {2 \sqrt {x}}{\sqrt {-b x +a}\, a} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(-b*x+a)^(3/2)/x^(1/2),x)

[Out]

2*x^(1/2)/a/(-b*x+a)^(1/2)

________________________________________________________________________________________

maxima [A]  time = 1.30, size = 16, normalized size = 0.80 \begin {gather*} \frac {2 \, \sqrt {x}}{\sqrt {-b x + a} a} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(-b*x+a)^(3/2)/x^(1/2),x, algorithm="maxima")

[Out]

2*sqrt(x)/(sqrt(-b*x + a)*a)

________________________________________________________________________________________

mupad [B]  time = 0.34, size = 24, normalized size = 1.20 \begin {gather*} \frac {2\,\sqrt {x}\,\sqrt {a-b\,x}}{a^2-a\,b\,x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(x^(1/2)*(a - b*x)^(3/2)),x)

[Out]

(2*x^(1/2)*(a - b*x)^(1/2))/(a^2 - a*b*x)

________________________________________________________________________________________

sympy [A]  time = 0.94, size = 44, normalized size = 2.20 \begin {gather*} \begin {cases} \frac {2}{a \sqrt {b} \sqrt {\frac {a}{b x} - 1}} & \text {for}\: \left |{\frac {a}{b x}}\right | > 1 \\- \frac {2 i}{a \sqrt {b} \sqrt {- \frac {a}{b x} + 1}} & \text {otherwise} \end {cases} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(-b*x+a)**(3/2)/x**(1/2),x)

[Out]

Piecewise((2/(a*sqrt(b)*sqrt(a/(b*x) - 1)), Abs(a/(b*x)) > 1), (-2*I/(a*sqrt(b)*sqrt(-a/(b*x) + 1)), True))

________________________________________________________________________________________